home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2012 February / maximum-cd-2012-02.iso / DiscContents / TheWagerSetup1.2.exe / Assets / Scripts / [79].lua < prev    next >
Encoding:
Text File  |  2011-11-07  |  569 b   |  29 lines

  1. -- Script [79]
  2. Starting = 0;
  3. SeaEvent = 0;
  4.  
  5. Suffix = "nothing";
  6.  
  7. C = (12 - CrewPower) * 300;
  8. if (C <= 0) then
  9.   C = 0;
  10. end
  11.  
  12. if (C >= PlayerCash) then
  13.  
  14.   C = PlayerCash;
  15.   Suffix = "everything";
  16.  
  17. else
  18.  
  19.   Suffix = C .. " Pieces";
  20.  
  21. end
  22.  
  23.  
  24. ShowStoryText("With the combined effort of your crew you manage to repair the ship over the course of a couple of days. When you take stock of your treasure, you find that you have lost " .. Suffix);
  25.  
  26. PlayerCash = PlayerCash - C;
  27.  
  28. AddDays(3);
  29. AddCaptainsLog("Suffered a hull breach after hitting a reef!");